Skip to main content
POST
/
parse
/
csv
/
Parse Csv
curl --request POST \
  --url https://rag-prod.studio.lyzr.ai/v3/parse/csv/ \
  --header 'Content-Type: multipart/form-data' \
  --header 'x-api-key: <api-key>' \
  --form source_column=text_data_column \
  --form 'extra_info={}' \
  --form file=@example-file
"<string>"

Authorizations

x-api-key
string
header
required

Body

multipart/form-data
file
file
required

The CSV file to upload.

source_column
string
required

The name of the column in the CSV file that contains the text data to be parsed.

Example:

"text_data_column"

extra_info
string

Optional JSON string of extra metadata to associate with the parsed documents.

Example:

"{}"

Response

CSV file successfully processed.

Placeholder for a list of processed documents (exact schema is not defined but response indicates success).